projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d8e157
)
Use require instead of boundp+load-library in double.el
author
Stefan Kangas
<stefan@marxist.se>
Thu, 4 Feb 2021 04:02:42 +0000
(
05:02
+0100)
committer
Stefan Kangas
<stefan@marxist.se>
Thu, 4 Feb 2021 04:28:00 +0000
(
05:28
+0100)
* lisp/double.el (isearch): Use require instead of
boundp+load-library.
lisp/double.el
patch
|
blob
|
history
diff --git
a/lisp/double.el
b/lisp/double.el
index d099fd06422401cfbaf9b25716e8a0132400771f..7bc8d92e600537c5ab8e84ebceb29f50d15161c0 100644
(file)
--- a/
lisp/double.el
+++ b/
lisp/double.el
@@
-95,8
+95,7
@@
but not `C-u X' or `ESC X' since the X is not the prefix key."
(global-set-key [ignore] 'ignore)
-(or (boundp 'isearch-mode-map)
- (load-library "isearch"))
+(require 'isearch)
(define-key isearch-mode-map [ignore]
(lambda () (interactive) (isearch-update)))